home *** CD-ROM | disk | FTP | other *** search
/ Just Call Me Internet / Just Call Me Internet.iso / prog / atari / c / stut_src / os_dirs.h < prev    next >
C/C++ Source or Header  |  1996-06-04  |  326b  |  17 lines

  1. /*
  2.  * OS_Dirs.h
  3.  */
  4.  
  5. #ifndef _OS_DIRS_H_
  6. #define _OS_DIRS_H_
  7.  
  8. typedef struct direntry
  9.     {
  10.         unsigned char        uc_attrib;            /* Attributs */
  11.        char               sz_fname[14];        /* Nom */
  12.         unsigned long      ul_length;            /* Longueur */
  13.         time_t                time_LastChange;    /* Date de modif, format UNIX */
  14.     }
  15.     DIRENTRY;
  16.  
  17. #endif